func net/http.http2encKV

11 uses

	net/http (current package)
		h2_bundle.go#L10447: func http2encKV(enc *hpack.Encoder, k, v string) {
		h2_bundle.go#L10470: 		http2encKV(enc, ":status", http2httpCodeString(w.httpResCode))
		h2_bundle.go#L10476: 		http2encKV(enc, "content-type", w.contentType)
		h2_bundle.go#L10479: 		http2encKV(enc, "content-length", w.contentLength)
		h2_bundle.go#L10482: 		http2encKV(enc, "date", w.date)
		h2_bundle.go#L10528: 	http2encKV(enc, ":method", w.method)
		h2_bundle.go#L10529: 	http2encKV(enc, ":scheme", w.url.Scheme)
		h2_bundle.go#L10530: 	http2encKV(enc, ":authority", w.url.Host)
		h2_bundle.go#L10531: 	http2encKV(enc, ":path", w.url.RequestURI())
		h2_bundle.go#L10562: 	http2encKV(enc, ":status", "100")
		h2_bundle.go#L10623: 			http2encKV(enc, k, v)